Using iterable unpacking operator With unique values

27

list_1 = [1, 'a']
list_2 = [1, 2, 3]

list_joined = list(set(list_1 + list_2))
print(list_joined)

Comments

Submit
0 Comments